python save figure

39

python save figure -

# Basic syntax:
plt.savefig("/path/to/output/directory/figure.png")

# Example usage:
import matplotlib.pyplot as plt
plt.figure()
plt.plot(range(5))
plt.savefig("~/Documents/figure.png", dpi=300)

save plot in python -

plt.savefig('books_read.png')

save matplotlib figure -

plt.savefig('image.png')

Comments

Submit
0 Comments